Package com.bitmovin.player.api.network

Types

HttpRequest
Link copied to clipboard
open class HttpRequest
Represents an HTTP request.
HttpRequestType
Link copied to clipboard
enum HttpRequestType : Enum<HttpRequestType>
Available HTTP request types.
HttpResponse
Link copied to clipboard
data class HttpResponse(httpRequest: HttpRequest, url: String, status: Int, headers: Map<String, String>, body: ByteArray)
NetworkConfig
Link copied to clipboard
data class NetworkConfig(preprocessHttpRequestCallback: PreprocessHttpRequestCallback?, preprocessHttpResponseCallback: PreprocessHttpResponseCallback?) : Parcelable
The network configuration gives the ability to influence network requests.
PreprocessHttpRequestCallback
Link copied to clipboard
interface PreprocessHttpRequestCallback
Can be used to change request parameters before a request is made.
PreprocessHttpResponseCallback
Link copied to clipboard
interface PreprocessHttpResponseCallback
Can be used to the access or change properties of the response before it gets into the player.